home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / CBGRX103.ZIP / contrib / libgrx / src / p4line.c < prev    next >
Text File  |  1993-12-06  |  2KB  |  71 lines

  1. /**
  2.  ** P4LINE.C
  3.  **
  4.  **  Copyright (C) 1992, Csaba Biegl
  5.  **    820 Stirrup Dr, Nashville, TN, 37221
  6.  **    csaba@vuse.vanderbilt.edu
  7.  **
  8.  **  This file is distributed under the terms listed in the document
  9.  **  "copying.cb", available from the author at the address above.
  10.  **  A copy of "copying.cb" should accompany this file; if not, a copy
  11.  **  should be available from where this file was obtained.  This file
  12.  **  may not be distributed without a verbatim copy of "copying.cb".
  13.  **  You should also have received a copy of the GNU General Public
  14.  **  License along with this program (it is in the file "copying");
  15.  **  if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  16.  **  Cambridge, MA 02139, USA.
  17.  **
  18.  **  This program is distributed in the hope that it will be useful,
  19.  **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  **  GNU General Public License for more details.
  22.  **/
  23.  
  24. #include "p4.h"
  25. #include "bitdraw.h"
  26.  
  27. void _GrP4DrawLine(long addr,int color,int deltax,int deltay)
  28. {
  29.     pixptr p  = P_ADDRESS(CURC,addr);
  30.     int mask = 0x80 >> P_OFFSET(addr);
  31.     int offs = CURC->gc_lineoffset;
  32.     int oper = C_OPER(color);
  33.     int plane;
  34.  
  35.     if((_GrP4DrawTable[oper] ^ (color &= C_SIGNIF)) == 0) return;
  36.     if(deltay < 0) { deltay = (-deltay); offs = (-offs); }
  37.     if(CURC->gc_onscreen) {
  38.         if(_GrAdapterType == GR_VGA) {
  39.         _SetVGAWriteMode(8+3);
  40.         _SetVGAWriteMask(0xff);
  41.         _SetVGADontCareRegister(0x00);
  42.         _SetVideoColor(color,oper);
  43.         _DrawLineVGA(p,offs,deltax,deltay,mask);
  44.         _SetVGAWriteMode(0);
  45.         }
  46.         else {
  47.         _SetVideoColor(color,oper);
  48.         _DrawLineEGA(p,offs,deltax,deltay,mask);
  49.         }
  50.         return;
  51.     }
  52.     oper <<= 1;
  53.     for(plane = 4; --plane >= 0; color >>= 1) {
  54.         switch(oper | (color & 1)) {
  55.           case C_XOR2+1:
  56.         _DrawLineXor(p,offs,deltax,deltay,mask);
  57.         break;
  58.           case C_OR2+1:
  59.           case C_SET2+1:
  60.         _DrawLineOr(p,offs,deltax,deltay,mask);
  61.         break;
  62.           case C_AND2+0:
  63.           case C_SET2+0:
  64.         _DrawLineAnd(p,offs,deltax,deltay,mask);
  65.         break;
  66.         }
  67.         p = (pixptr)((long)p + CURC->gc_planeoffset);
  68.     }
  69. }
  70.  
  71.